home *** CD-ROM | disk | FTP | other *** search
Makefile | 1996-11-11 | 479 b | 28 lines |
- #! smake
-
- #
- # $Revision: 1.2 $
- # $Date: 1996/08/12 16:16:25 $
- #
- include $(ROOT)/usr/include/make/commondefs
-
- UTIL = util.o fromxwd_1.o
-
- TARGETS = offscreen_render
-
- LLDLIBS = $(UTIL) -lGL -lXext -lX11 -limage
- OPTIMIZER = -O2 -mips2
- LCDEFS = -D__STDC__=1 -DDEBUG -UNDEBUG $(LINTDEFS)
- LCOPTS = -Wl,-no_jump_at_eop -KPIC -call_shared
-
- default: $(UTIL) $(TARGETS)
-
- $(TARGETS): $(UTIL)
-
- include $(COMMONRULES)
-
- $(UTIL): util.c fromxwd_1.c
- $(CCF) -c util.c
- $(CCF) -c fromxwd_1.c
-
-